summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authort895 <clombardo169@gmail.com>2024-02-05 12:49:01 +0100
committert895 <clombardo169@gmail.com>2024-02-08 20:13:46 +0100
commit2600ac65c8101c69988f2506739e6ddef05b23c7 (patch)
tree286b6e4beb914b46c548a56e1cb4424a095d4124
parentcommon: fs: Expand android macros (diff)
downloadyuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar
yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.gz
yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.bz2
yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.lz
yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.xz
yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.tar.zst
yuzu-2600ac65c8101c69988f2506739e6ddef05b23c7.zip
-rw-r--r--src/android/app/src/main/jni/emu_window/emu_window.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/android/app/src/main/jni/emu_window/emu_window.cpp b/src/android/app/src/main/jni/emu_window/emu_window.cpp
index c4f631924..c927cddda 100644
--- a/src/android/app/src/main/jni/emu_window/emu_window.cpp
+++ b/src/android/app/src/main/jni/emu_window/emu_window.cpp
@@ -3,6 +3,7 @@
#include <android/native_window_jni.h>
+#include "common/android/id_cache.h"
#include "common/logging/log.h"
#include "input_common/drivers/touch_screen.h"
#include "input_common/drivers/virtual_amiibo.h"
@@ -60,7 +61,8 @@ void EmuWindow_Android::OnRemoveNfcTag() {
void EmuWindow_Android::OnFrameDisplayed() {
if (!m_first_frame) {
- EmulationSession::GetInstance().OnEmulationStarted();
+ Common::Android::RunJNIOnFiber<void>(
+ [&](JNIEnv* env) { EmulationSession::GetInstance().OnEmulationStarted(); });
m_first_frame = true;
}
}